home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / CURRENT / 000295_Christian.Cort…ni-stuttgart.de_Tue Feb 9 11:43:43 2010.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader2.panix.com!panix!newsfeed-00.mathworks.com!kanaga.switch.ch!switch.ch!news.belwue.de!rz.uni-karlsruhe.de!feed.news.schlund.de!schlund.de!news.online.de!not-for-mail
  2. From: Christian Corti <Christian.Corti@studserv.uni-stuttgart.de>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Announce: C-Kermit 9.0 Alpha.02
  5. Date: Tue, 9 Feb 2010 17:21:17 +0100
  6. Organization: Kompetenzzentrum fyr Minimal- und Retrocomputing
  7. Lines: 45
  8. Message-ID: <tke847-tum.ln1@news.online.de>
  9. References: <slrnhmejtk.5hv.fdc@panix2.panix.com> <j3jq37-lis.ln1@news.online.de> <slrnhmp24d.i53.fdc@panix2.panix.com>
  10. Reply-To: cc@corti-net.de
  11. NNTP-Posting-Host: p57b51224.dip0.t-ipconnect.de
  12. X-Trace: online.de 1265733602 24731 87.181.18.36 (9 Feb 2010 16:40:02 GMT)
  13. X-Complaints-To: abuse@einsundeins.com
  14. NNTP-Posting-Date: Tue, 9 Feb 2010 16:40:02 +0000 (UTC)
  15. Cancel-Lock: sha1:0//nwz9wWU+D/HL4iUatWRi2CY8=
  16. User-Agent: tin/1.9.5-20090720 ("Rieclachan") (UNIX) (Linux/2.6.26 (i686))
  17. Xref: panix comp.protocols.kermit.misc:15894
  18.  
  19. Frank da Cruz <fdc@panix.com> wrote:
  20. > Have you tried including termios.h?  Does it work?
  21.  
  22. I had to add the following parts to make it work:
  23.  
  24. ckupty.c
  25. --------
  26. [...]
  27. #define HAVE_TTYNAME
  28. #define HAVE_WAITPID
  29. +
  30. +#ifdef SUNOS41
  31. +#define BSD44ORPOSIX
  32. +#endif
  33.  
  34. #ifndef USE_TERMIO
  35. #ifdef LINUX
  36. [...]
  37.  
  38. ckutio.c
  39. --------
  40. [...]
  41. #endif /* MAXNAMLEN */
  42. #endif /* BSD4 */
  43. +
  44. +#ifdef SUNOS41
  45. +#define BSD44ORPOSIX
  46. +#define SVORPOSIX
  47. +#include <termios.h>
  48. +#include <sys/ioctl.h>
  49. +#include <unistd.h>
  50. +#include <limits.h>
  51. +#endif
  52.  
  53. /*
  54.   Minix 2.0 support added by Terry McConnell,
  55. [...]
  56.  
  57. Using NCurses instead of Curses produced an illegal instruction trap
  58. right after printing the "C-Kermit>" prompt, but I suspect my local
  59. NCurses installation has some flaws. With curses/termcap, everything
  60. seems to be fine, but I haven't tested everything.
  61.  
  62. Christian
  63.